POST api/v1/dataservice/getdatarowsasync/{tableName}?fieldList[0]={fieldList[0]}&fieldList[1]={fieldList[1]}
Gets Data Rows for the provided Row Ids asynchronously. You must call
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| tableName |
Name of the table to search. |
string |
Required |
| fieldList |
The list of fields to return. (optional). If empty, all fields will be returned |
Collection of string |
Required |
Body Parameters
List of row id's to retrieve.
Collection of stringRequest Formats
application/json, text/json
Sample:
[ "sample string 1", "sample string 2" ]
application/xml, text/xml
Sample:
<ArrayOfstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <string>sample string 1</string> <string>sample string 2</string> </ArrayOfstring>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
stringResponse Formats
application/json, text/json
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>
text/plain
Sample:
sample string 1